User profile: logart

User info
User name:logart
Email:logan.poole12@gmail.com
Name:Logan Poole
Location:Texas Red-Neck
Bio:What inspires me to code games is all of the horrible games today. All the kids are caught up on Black Ops and don't even pay attention to the good older games such as FF (the good ones) dragon warrior, Sonic, and all of the other good games from adult childhoods. My dream is for a group of people to recreate games for the old systems like PS1, Dreamcast, SNES, and Sega Genesis.
Statistical data
Birthdate:Sep 12, 1998
Gender:Male
Occupation:Student
Skills:BASIC
C++
Java
C#
Ruby
QBasic
HyperText Markup Language
History
Joined:
Number of posts:110
Latest posts:

Reading into an array
Well, I finally got it to work: [code] void LoadMapFromFile() { FILE * myfile; myfile = fopen(m...

Reading into an array
After trying to fix it for a while I decided to try a new method: [code] void LoadMapFromFile() { ...

Reading into an array
I did a bit of debugging: [code] void LoadMap() { for (int a = 0; a < 80;++a) { for (int b = 0;...

Reading into an array
Each square is 32 by 32. The first two are the x and y of the top left, the second two are the x and...

Reading into an array
So my program needs to read a 80 by 60 array of integers from a text file into an array. The process...