puae 2.3.0

parent 0de8c585
This diff is collapsed.
......@@ -6,8 +6,9 @@ PUAE versioning is based on the merged WinUAE version..
All is done by:
Mustafa 'GnoStiC' TUFAN (mustafa.tufan@gmail.com)
with OS-X fixes from:
Steven 'xaind' Saunders
with fixes from:
Steven 'xaind' Saunders (MacOSX)
'wuffe' (FreeBSD)
Thanks for the morale support:
Dom 'Hungry Horace' Cresswell
......@@ -144,6 +145,7 @@ See the docs/compiling.txt file for more information about building PUAE.
GIT
===
http://github.com/GnoStiC/PUAE
Contact
......
......@@ -1738,6 +1738,17 @@ static void add_p96_mode (int width, int height, int emulate_chunky, int *count)
addmode (md, width, height, bitdepth, 75, 0);
}
}
md1 = Displays;
if (md1->DisplayModes[0].depth >= 0)
md1->disabled = 0;
i = 0;
while (md1->DisplayModes[i].depth > 0)
i++;
write_log ("'%s', %d display modes (%s)\n", md1->name, i, md1->disabled ? "disabled" : "enabled");
md1++;
return;
}
......
......@@ -25,7 +25,9 @@
#define IPC_CREAT 0x04
#define IPC_STAT 0x08
#if !defined(__FreeBSD__)
typedef int key_t;
#endif
/* One shmid data structure for each shared memory segment in the system. */
struct shmid_ds {
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment