Skip to content

Commit

Permalink
temp fix for Hatari saving invalid data
Browse files Browse the repository at this point in the history
  • Loading branch information
squalldc committed Dec 22, 2014
1 parent bd25368 commit 87c4d4d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Projects/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.RetroSoft.Hataroid"
android:versionCode="1560"
android:versionName="1.560" >
android:versionCode="1561"
android:versionName="1.561" >

<uses-sdk
android:minSdkVersion="9"
Expand Down
2 changes: 1 addition & 1 deletion Projects/assets/text/help.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<br>
<h1><b><font color="#ff6060">H</font><font color="#60ff60">a</font><font color="#6060ff">t</font><font color="#ffff60">a</font><font color="#ff60ff">r</font><font color="#60ffff">o</font><font color="#ff6060">i</font><font color="#60ff60">d</font></b> v1.560 (20140629)</h1>
<h1><b><font color="#ff6060">H</font><font color="#60ff60">a</font><font color="#6060ff">t</font><font color="#ffff60">a</font><font color="#ff60ff">r</font><font color="#60ffff">o</font><font color="#ff6060">i</font><font color="#60ff60">d</font></b> v1.561 (20141221)</h1>
<br>

<h2><b><font color="#60ff60">About</font></b></h2>
Expand Down
3 changes: 3 additions & 0 deletions Projects/jni/hatari/src/video.c
Original file line number Diff line number Diff line change
Expand Up @@ -564,6 +564,9 @@ void Video_MemorySnapShot_Capture(bool bSave)
MemorySnapShot_Store(&bTTSampleHold, sizeof(bTTSampleHold));
MemorySnapShot_Store(&bTTHypermono, sizeof(bTTHypermono));
MemorySnapShot_Store(&TTSpecialVideoMode, sizeof(TTSpecialVideoMode));

// HACK: fix to broken Hatari saves (they shouldn't be saving a pointer!!!)
pVideoRaster = &STRam[VideoBase];
}


Expand Down

0 comments on commit 87c4d4d

Please sign in to comment.