Added several small upstream patches for CPU module.

Added the D2D rendering module from 86Box, and updated it.
Fixed the Slovenian translation.
Added Norwegian (Bokmal) translation.
Several small fixes here and there.
This commit is contained in:
waltje
2018-07-28 20:52:51 -04:00
parent 4c03094eaf
commit 3bb15e1fe7
15 changed files with 1094 additions and 44 deletions

View File

@@ -8,7 +8,7 @@
*
* Main emulator module where most things are controlled.
*
* Version: @(#)pc.c 1.0.48 2018/06/26
* Version: @(#)pc.c 1.0.49 2018/07/28
*
* Authors: Fred N. van Kempen, <decwiz@yahoo.com>
* Miran Grca, <mgrca8@gmail.com>
@@ -301,7 +301,7 @@ pclog_dump(int num)
while (i < num) {
if (sp == NULL) {
sp = buff;
sprintf(sp, "%08lx:", cpu_state.pc + i);
sprintf(sp, "%08lx:", (unsigned long)cpu_state.pc + i);
sp += strlen(sp);
}