[go: up one dir, main page]

Menu

[bd520a]: / crt.h  Maximize  Restore  History

Download this file

22 lines (17 with data), 285 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
//
// crt.h
// Chocolate Wolfenstein 3D
//
// Created by fabien sanglard on 2014-08-26.
//
//
#ifndef crt_h
#define crt_h
#include <SDL.h>
extern SDL_Color curpal[256];
/*
* Trigger the Digital To Analogic convertion
*/
void CRT_DAC(void);
void CRT_Screenshot(void);
#endif