summaryrefslogtreecommitdiffstats
path: root/res/raw
diff options
context:
space:
mode:
Diffstat (limited to 'res/raw')
-rw-r--r--res/raw/allapps.rs6
-rw-r--r--res/raw/allapps_bc.bcbin10200 -> 10212 bytes
2 files changed, 5 insertions, 1 deletions
diff --git a/res/raw/allapps.rs b/res/raw/allapps.rs
index 9342943e4..7eb670a68 100644
--- a/res/raw/allapps.rs
+++ b/res/raw/allapps.rs
@@ -79,8 +79,12 @@ static int g_Rows;
static int g_DrawLastFrame;
static int lastFrame(int draw) {
+ // We draw one extra frame to work around the last frame post bug.
+ // We also need to track if we drew the last frame to deal with large DT
+ // in the physics.
+ int ret = g_DrawLastFrame | draw;
g_DrawLastFrame = draw;
- return draw;
+ return ret;//draw;
}
static void updateReadback() {
diff --git a/res/raw/allapps_bc.bc b/res/raw/allapps_bc.bc
index d73db54e7..4cb3ecc2b 100644
--- a/res/raw/allapps_bc.bc
+++ b/res/raw/allapps_bc.bc
Binary files differ