Skip to content

Commit b9db4b5

Browse files
committed
[[ Trial ]] Tweaks
This patch fixes a license type mismatch when building standalones and tweaks the background color of the android banner to be white.
1 parent 5c25307 commit b9db4b5

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

engine/src/deploy.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -761,6 +761,8 @@ void MCIdeDeploy::exec_ctxt(MCExecContext& ctxt)
761761
if (t_license_class == kMCLicenseClassNone)
762762
t_license_class = MClicenseparameters . license_class;
763763

764+
t_params . banner_class = t_license_class;
765+
764766
// Now check to see if we should build a trial - this if the license class is a
765767
// trail, or the banner_class override is specified and the chosen option is
766768
// compatible with the license class.

engine/src/java/com/runrev/android/BitmapView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ public void drawSplashScreen(Canvas p_canvas)
157157
Resources t_resources;
158158
t_resources = getContext().getResources();
159159

160-
p_canvas . drawRGB(50, 50, 50);
160+
p_canvas . drawRGB(255, 255, 255);
161161

162162
int t_splash_image_id;
163163
t_splash_image_id = t_resources.getIdentifier("drawable/splash_image", null, t_package);

0 commit comments

Comments
 (0)