Created
September 1, 2017 19:06
-
-
Save daveloyall/f107751296dcfabb2a06136f0b806911 to your computer and use it in GitHub Desktop.
C help?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wut: wut.c | |
$(CC) -g wut.c -o wut -Wall -Wextra -pedantic -std=c99 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#define BOARD_HEIGHT 16 | |
#define SCREEN_HEIGHT 32 | |
#define VERTICAL_RATIO SCREEN_HEIGHT / BOARD_HEIGHT | |
int main() { | |
unsigned int y = 26; | |
unsigned int board_y = y / VERTICAL_RATIO; | |
printf("%d\n",board_y); | |
} |
Author
daveloyall
commented
Sep 1, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment