Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Resolution problem


ilkan783
 Share

Recommended Posts

Hello
I move on through the Eclipse open-source code in Visual Basic 6\. I met a problem during the edit. to be held by picScreen game screen the game in full screen resolution 1204 * 768 resolution in going down and I would like to change. In this way, how can I do?

In the meantime, I am from Turkey so I could have made spelling disorder.
Link to comment
Share on other sites

Client side:
On **frmMain**, search for **Private Sub Form_Load()** and add this:```
picScreen.width = 1024
picScreen.height = 768
```Now go on **modConstants** , search for **' Map constants** and replace Max_MapX and Map_MapY with this:```
Public Const MAX_MAPX As Byte = (1024 / 32 - 1)
Public Const MAX_MAPY As Byte = (768 / 32 - 1)
```Server side:
Go on **modConstants** , search for **' Map constants** and replace Max_MapX and Map_MapY with this:```
Public Const MAX_MAPX As Byte = (1024 / 32 - 1)
Public Const MAX_MAPY As Byte = (768 / 32 - 1)
```
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...