mirror of
https://github.com/luksamuk/engine-psx.git
synced 2025-04-28 21:38:02 +03:00
Tweak level select and semicolon on big font
This commit is contained in:
parent
b7ad804e99
commit
ded76efbcf
6 changed files with 14 additions and 19 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -9,3 +9,4 @@ build/
|
||||||
/*.mcd
|
/*.mcd
|
||||||
/*.chd
|
/*.chd
|
||||||
*.tiled-session
|
*.tiled-session
|
||||||
|
/.pcsx
|
||||||
|
|
16
Makefile
16
Makefile
|
@ -30,21 +30,15 @@ chd: engine.chd
|
||||||
run: ./build/engine.cue
|
run: ./build/engine.cue
|
||||||
pcsx-redux-appimage \
|
pcsx-redux-appimage \
|
||||||
-run -interpreter -fastboot -stdout \
|
-run -interpreter -fastboot -stdout \
|
||||||
-iso ./build/engine.cue
|
-iso $<
|
||||||
|
|
||||||
# Run on pcsx-redux, but don't build
|
|
||||||
dry-run:
|
|
||||||
pcsx-redux-appimage \
|
|
||||||
-run -interpreter -fastboot -stdout \
|
|
||||||
-iso ./build/engine.cue
|
|
||||||
|
|
||||||
# Target for running the image on Mednafen
|
# Target for running the image on Mednafen
|
||||||
mednafen: ./build/engine.cue
|
run-mednafen: ./build/engine.cue
|
||||||
mednafen $<
|
mednafen $<
|
||||||
|
|
||||||
# Emulate on Mednafen, but do not build
|
# Target for running the image on PCSX-ReARMed
|
||||||
emu:
|
run-rearmed: ./build/engine.cue
|
||||||
mednafen ./build/engine.cue
|
pcsx -cdfile $<
|
||||||
|
|
||||||
# Run debugger
|
# Run debugger
|
||||||
debug:
|
debug:
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
|
@ -51,7 +51,7 @@ static uint8_t glyph_info_big[] = {
|
||||||
|
|
||||||
0xff, 0, 0, 0, // * (no char)
|
0xff, 0, 0, 0, // * (no char)
|
||||||
247, 0, 3, 11, // .
|
247, 0, 3, 11, // .
|
||||||
250, 0, 3, 11, // :
|
108, 11, 7, 11, // :
|
||||||
0xff, 0, 0, 0, // - (no char)
|
0xff, 0, 0, 0, // - (no char)
|
||||||
0xff, 0, 0, 0, // = (no char)
|
0xff, 0, 0, 0, // = (no char)
|
||||||
0xff, 0, 0, 0, // ! (no char)
|
0xff, 0, 0, 0, // ! (no char)
|
||||||
|
|
|
@ -36,13 +36,13 @@ typedef struct {
|
||||||
extern int debug_mode;
|
extern int debug_mode;
|
||||||
|
|
||||||
static const char *menutext[] = {
|
static const char *menutext[] = {
|
||||||
"PLAYGROUND ZONE 1",
|
"PLAYGROUND 1",
|
||||||
" ZONE 2",
|
" 2",
|
||||||
" ZONE 3",
|
" 3",
|
||||||
" ZONE 4",
|
" 4",
|
||||||
"GREEN HILL ZONE 1",
|
"GREEN HILL 1",
|
||||||
" ZONE 2",
|
" 2",
|
||||||
"SURELY WOOD ZONE 1",
|
"SURELY WOOD 1",
|
||||||
|
|
||||||
"\n",
|
"\n",
|
||||||
"\n",
|
"\n",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue