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
|
||||
/*.chd
|
||||
*.tiled-session
|
||||
/.pcsx
|
||||
|
|
16
Makefile
16
Makefile
|
@ -30,21 +30,15 @@ chd: engine.chd
|
|||
run: ./build/engine.cue
|
||||
pcsx-redux-appimage \
|
||||
-run -interpreter -fastboot -stdout \
|
||||
-iso ./build/engine.cue
|
||||
|
||||
# Run on pcsx-redux, but don't build
|
||||
dry-run:
|
||||
pcsx-redux-appimage \
|
||||
-run -interpreter -fastboot -stdout \
|
||||
-iso ./build/engine.cue
|
||||
-iso $<
|
||||
|
||||
# Target for running the image on Mednafen
|
||||
mednafen: ./build/engine.cue
|
||||
run-mednafen: ./build/engine.cue
|
||||
mednafen $<
|
||||
|
||||
# Emulate on Mednafen, but do not build
|
||||
emu:
|
||||
mednafen ./build/engine.cue
|
||||
# Target for running the image on PCSX-ReARMed
|
||||
run-rearmed: ./build/engine.cue
|
||||
pcsx -cdfile $<
|
||||
|
||||
# Run debugger
|
||||
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)
|
||||
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)
|
||||
|
|
|
@ -36,13 +36,13 @@ typedef struct {
|
|||
extern int debug_mode;
|
||||
|
||||
static const char *menutext[] = {
|
||||
"PLAYGROUND ZONE 1",
|
||||
" ZONE 2",
|
||||
" ZONE 3",
|
||||
" ZONE 4",
|
||||
"GREEN HILL ZONE 1",
|
||||
" ZONE 2",
|
||||
"SURELY WOOD ZONE 1",
|
||||
"PLAYGROUND 1",
|
||||
" 2",
|
||||
" 3",
|
||||
" 4",
|
||||
"GREEN HILL 1",
|
||||
" 2",
|
||||
"SURELY WOOD 1",
|
||||
|
||||
"\n",
|
||||
"\n",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue