Merge branch 'accurate' into portable
This commit is contained in:
commit
79759145c0
4 changed files with 6 additions and 6 deletions
2
Makefile
2
Makefile
|
@ -262,7 +262,7 @@ obj/bin2h: bin2h/bin2h.c
|
||||||
|
|
||||||
include $(wildcard $(DEPENDENCIES))
|
include $(wildcard $(DEPENDENCIES))
|
||||||
|
|
||||||
obj/$(FILENAME)/windows_resources.o: msvc2003/CSE2.rc
|
obj/$(FILENAME)/windows_resources.o: assets/resources/CSE2.rc
|
||||||
@mkdir -p $(@D)
|
@mkdir -p $(@D)
|
||||||
@$(WINDRES) $< $@
|
@$(WINDRES) $< $@
|
||||||
|
|
||||||
|
|
|
@ -58,13 +58,13 @@ BEGIN
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
|
|
||||||
CURSOR_IKA CURSOR "..\\assets\\resources\\CURSOR\\CURSOR_IKA.cur"
|
CURSOR_IKA CURSOR "CURSOR\\CURSOR_IKA.cur"
|
||||||
|
|
||||||
CURSOR_NORMAL CURSOR "..\\assets\\resources\\CURSOR\\CURSOR_NORMAL.cur"
|
CURSOR_NORMAL CURSOR "CURSOR\\CURSOR_NORMAL.cur"
|
||||||
|
|
||||||
0 ICON "..\\assets\\resources\\ICON\\0.ico"
|
0 ICON "ICON\\0.ico"
|
||||||
|
|
||||||
ICON_MINI ICON "..\\assets\\resources\\ICON\\ICON_MINI.ico"
|
ICON_MINI ICON "ICON\\ICON_MINI.ico"
|
||||||
|
|
||||||
#endif // Japanese resources
|
#endif // Japanese resources
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
|
@ -69,7 +69,7 @@ typedef struct MUSICINFO
|
||||||
unsigned short alloc_note; // Number of allocated notes
|
unsigned short alloc_note; // Number of allocated notes
|
||||||
long repeat_x; // Repeat
|
long repeat_x; // Repeat
|
||||||
long end_x; // End of song (Return to repeat)
|
long end_x; // End of song (Return to repeat)
|
||||||
TRACKDATA tdata[16];
|
TRACKDATA tdata[MAXTRACK];
|
||||||
} MUSICINFO;
|
} MUSICINFO;
|
||||||
|
|
||||||
// メインクラス。このアプリケーションの中心。(クラスってやつを初めて使う) (Main class. The heart of this application. (Class is used for the first time))
|
// メインクラス。このアプリケーションの中心。(クラスってやつを初めて使う) (Main class. The heart of this application. (Class is used for the first time))
|
||||||
|
|
Loading…
Add table
Reference in a new issue