Search found 32 matches

by Dlotan
April 21st, 2012, 1:17 am
Forum: Everything
Topic: PutPixel is undefined?
Replies: 7
Views: 3692

Re: PutPixel is undefined?

its a member function of the gfx class, so the function gets called by sayin

gfx.PutPixel(...);
by Dlotan
April 21st, 2012, 1:12 am
Forum: Everything
Topic: How coincidental!
Replies: 4
Views: 2636

Re: How coincidental!

KPence wrote:In the US, today is 4/20
amazing...
by Dlotan
April 21st, 2012, 12:21 am
Forum: Everything
Topic: How coincidental!
Replies: 4
Views: 2636

Re: How coincidental!

what u mean?
by Dlotan
April 18th, 2012, 11:46 pm
Forum: Everything
Topic: lesson 8 lagging
Replies: 6
Views: 3231

Re: lesson 8 lagging

Its the framework which isnt perfect yet. Theres a change to it in lesson 13 which makes it a lot more smooth
by Dlotan
April 17th, 2012, 6:48 pm
Forum: Everything
Topic: Minesweeper -> Dlotan ;)
Replies: 4
Views: 4370

Re: Minesweeper -> Dlotan ;)

Thanks a lot Buddy ;)
by Dlotan
April 15th, 2012, 2:06 pm
Forum: Everything
Topic: screen scrolling solution and/or fail
Replies: 5
Views: 3499

Re: screen scrolling solution and/or fail

i didnt change a thing in ur code and get an error by instant.. That kind of error, where u draw a pxl outside the screen
by Dlotan
April 15th, 2012, 12:47 pm
Forum: Everything
Topic: Minesweeper -> Dlotan ;)
Replies: 4
Views: 4370

Re: Minesweeper -> Dlotan ;)

Thanks for reporting chili seems like i messed a + and a - up i did //btm-right if(y + 1 <= PROSPALTE + 1) { if(field[x + 1][y + 1].mine == TRUE) { field[x][y].minesnextto++; } } instead of //btm-right if(y + 1 <= PROSPALTE - 1) { if(field[x + 1][y + 1].mine == TRUE) { field[x][y].minesnextto++; } }...
by Dlotan
April 15th, 2012, 1:56 am
Forum: Everything
Topic: i need help with c++ tutorial ep. 5 !
Replies: 12
Views: 7360

Re: i need help with c++ tutorial ep. 5 !

At 12th grade i made a programm for school which was like some kind of simple browsergame for the console in ascii. I also used mysql. The plan was to make a game which has a client as a website but also as a .exe... they connection would have been the sql. But well i just completed the console thin...
by Dlotan
April 14th, 2012, 11:53 pm
Forum: Everything
Topic: Well, I managed to fuck it up...
Replies: 16
Views: 6372

Re: Well, I managed to fuck it up...

0xC0000005: Access violation reading location 0x00000000.

This usually means that u use a pointer to a position, where u got no access. Maybe rar and upload ur whole framework folder and i will try and look for the problem