Hey, what are some of the ways i can get my app to work both on phones and tablets without having to make a separate app?
My game is played in landscape mode, and it is 800 x 480 on a 16:9 resolution.
Right now I don't have access to a tablet, because I am abroad, so i can only test on my phone.
From my knowledge, this is what I tried doing.
SetScreenScissor(0,0,0,0) = from what I know this keeps the game at at the same resolution, but removes the black bars. Is a tablet is at a 1920 X 1080 resolution, will my game look something like this? http://prntscr.com/bopojd
I have also tried this in a function
x = GetDeviceWidth ()
y = GetDeviceHeight ()
SetScreenResolution(x,y)
It works perfectly for devices with the same aspect ratio, but since tablets and ipads tend to be 4:3 that doesn't help.
What are my options to suit my app? Many thanks