Skip to content

Commit cf98c17

Browse files
committed
preparing to release 0.70.1
1 parent 6e4b33e commit cf98c17

File tree

7 files changed

+26
-22
lines changed

7 files changed

+26
-22
lines changed

bin/assets/tic.js.dat

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

build/android/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
-->
55
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
66
package="com.nesbox.tic"
7-
android:versionCode="6003"
8-
android:versionName="0.60.3"
7+
android:versionCode="7001"
8+
android:versionName="0.70.1"
99
android:installLocation="auto">
1010

1111
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" />

build/html/tic.js

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/windows/tic/tic.aps

0 Bytes
Binary file not shown.

build/windows/tic/tic.rc

0 Bytes
Binary file not shown.

src/system.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -834,6 +834,8 @@ static void blitSound()
834834
else SDL_QueueAudio(platform.audio.device, tic->samples.buffer, tic->samples.size);
835835
}
836836

837+
#if !defined(__EMSCRIPTEN__) && !defined(__MACOSX__)
838+
837839
static void renderKeyboard()
838840
{
839841
if(platform.touchCounter == 0 || !isKbdVisible()) return;
@@ -907,6 +909,8 @@ static void renderGamepad()
907909
}
908910
}
909911

912+
#endif
913+
910914
static void blitCursor(const u8* in)
911915
{
912916
if(!platform.mouse.texture)

src/tic.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
#define TIC_VERSION_MAJOR 0
3030
#define TIC_VERSION_MINOR 70
31-
#define TIC_VERSION_PATCH 0
32-
#define TIC_VERSION_STATUS "-dev.5"
31+
#define TIC_VERSION_PATCH 1
32+
#define TIC_VERSION_STATUS ""
3333

3434
#if defined(TIC80_PRO)
3535
#define TIC_VERSION_POST " Pro"

0 commit comments

Comments
 (0)