s/display/draw.

This commit is contained in:
Murilo Pereira
2011-06-03 03:22:48 -03:00
parent 28ce3e07bd
commit 06782215b2
9 changed files with 20 additions and 18 deletions

View File

@@ -1,7 +1,7 @@
#include <assert.h>
#include <stdbool.h>
#include "../src/display.h"
#include "../src/draw.h"
void test_display() {
void test_draw() {
assert(true);
}

View File

@@ -8,7 +8,7 @@ int main(int argc, const char *argv[]) {
test_card();
test_cursor();
test_deck();
test_display();
test_draw();
test_frame();
test_game();
test_keyboard();

View File

@@ -4,7 +4,7 @@
void test_card();
void test_cursor();
void test_deck();
void test_display();
void test_draw();
void test_frame();
void test_game();
void test_keyboard();