fix: changed path of some header files
This commit is contained in:
parent
0ebff2b1b5
commit
27d47de273
4 changed files with 7 additions and 7 deletions
|
|
@ -2,9 +2,9 @@
|
||||||
# define CHIP8_H
|
# define CHIP8_H
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include "./memory.h"
|
#include "memory.h"
|
||||||
#include "./graphics.h"
|
#include "graphics.h"
|
||||||
#include "./input.h"
|
#include "input.h"
|
||||||
|
|
||||||
#define FRAME_TIME_MS 1000 / 60
|
#define FRAME_TIME_MS 1000 / 60
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef CPU_H
|
#ifndef CPU_H
|
||||||
# define CPU_H
|
# define CPU_H
|
||||||
|
|
||||||
#include "./chip8.h"
|
#include "chip8.h"
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
typedef struct s_instruction
|
typedef struct s_instruction
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "../hdrs/chip8.h"
|
#include "chip8.h"
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#include "../hdrs/memory.h"
|
#include "memory.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "../hdrs/font.h"
|
#include "font.h"
|
||||||
#include "libft.h"
|
#include "libft.h"
|
||||||
|
|
||||||
void memory_init(t_memory *mem)
|
void memory_init(t_memory *mem)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue