mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
gp2x+wiz binary support, wiz code wip
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@705 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
0d9bf4fcda
commit
ee2a3bdfa5
18 changed files with 911 additions and 95 deletions
|
@ -451,13 +451,13 @@ static int custom_read(menu_entry *me, const char *var, const char *val)
|
|||
#ifdef __GP2X__
|
||||
if (strcasecmp(var, "Scaling") != 0) return 0;
|
||||
if (strcasecmp(val, "OFF") == 0) {
|
||||
currentConfig.scaling = 0;
|
||||
currentConfig.scaling = EOPT_SCALE_NONE;
|
||||
} else if (strcasecmp(val, "hw horizontal") == 0) {
|
||||
currentConfig.scaling = 1;
|
||||
currentConfig.scaling = EOPT_SCALE_HW_H;
|
||||
} else if (strcasecmp(val, "hw horiz. + vert.") == 0) {
|
||||
currentConfig.scaling = 2;
|
||||
currentConfig.scaling = EOPT_SCALE_HW_HV;
|
||||
} else if (strcasecmp(val, "sw horizontal") == 0) {
|
||||
currentConfig.scaling = 3;
|
||||
currentConfig.scaling = EOPT_SCALE_SW_H;
|
||||
} else
|
||||
return 0;
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue