View Single Post
Old 16 September 2013, 01:40   #16
NovaCoder
Registered User
 
NovaCoder's Avatar
 
Join Date: Sep 2007
Location: Melbourne/Australia
Posts: 4,400
Hiya,

Glad it's working well for you

I thought you could define the cursor keys for movement, it shouldn't make any difference that they are also used to control the menu. You should be able to hit 'enter' on the key you want to define which should turn it grey with a blinking question mark, you then just select the key you want to use.

I can't do anything about the low sound volume, the easy thing to do is to just turn up your speakers

I actually found a bug myself last night, it seems on my 1260 some of the items are not drawn (you can toggle all the items on a map by going to the map screen and then holding down the space bar and the left cursor key).

Code:
if (IN_KeyDown(sc_UpArrow)) {
                Auto_Map.walls ^= 1; // C + Up = toggle walls
                while (IN_KeyDown(sc_UpArrow))
                    IN_ProcessEvents();
            }
            if (IN_KeyDown(sc_DownArrow)) {
                Auto_Map.secrets ^= 1; // C + Down = toggle secrets
                while (IN_KeyDown(sc_DownArrow))
                    IN_ProcessEvents();
            }
            if (IN_KeyDown(sc_LeftArrow)) {
                Auto_Map.items ^= 1; // C + Left = toggle items
                while (IN_KeyDown(sc_LeftArrow))
                    IN_ProcessEvents();
            }
            if (IN_KeyDown(sc_RightArrow)) {
                Auto_Map.enemies ^= 1; // C + Right = toggle enemies
                while (IN_KeyDown(sc_RightArrow))
                    IN_ProcessEvents();
            }
The bug is caused by the compiler optimizations, it might only effect 1260 users?

I'll have to do some investigation and see if I can fix it, even anyone has this bug with a 1230 then let me know
NovaCoder is offline  
 
Page generated in 0.04214 seconds with 11 queries