Hard-code window size for now on Tizen

This commit is contained in:
Joshua Granick
2013-11-29 12:37:25 -08:00
parent a236e808af
commit 188471d368

View File

@@ -23,8 +23,14 @@ namespace lime {
sgFlags = inFlags;
sgTitle = inTitle;
sgWidth = 720;
sgHeight = 720;
if (sgWidth == 0 && sgHeight == 0) {
// Hard code for now
sgWidth = 720;
sgHeight = 1280;
}
Tizen::Base::Collection::ArrayList args (Tizen::Base::Collection::SingleObjectDeleter);
args.Construct ();