mirror of
https://github.com/knightfox75/nds_nflib.git
synced 2025-06-18 16:55:32 -04:00

- Creative Commons (except for CC0) shouldn't be used for code: https://creativecommons.org/faq/#can-i-apply-a-creative-commons-license-to-software MIT has the same spirit as the CC-BY license. - CC-BY has been retained for the assets included in the repository. - Also, the years were wrong, this library was started in 2009. - Make all examples use the CC0 license.
35 lines
544 B
C
35 lines
544 B
C
// SPDX-License-Identifier: MIT
|
|
//
|
|
// Copyright (c) 2009-2014 Cesar Rincon "NightFox"
|
|
//
|
|
// NightFox LIB - Include de Fondos mixtos (Tiled / Bitmap 8 bits)
|
|
// http://www.nightfoxandco.com/
|
|
// Version 20140413
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef __NF_MIXEDBG_H__
|
|
#define __NF_MIXEDBG_H__
|
|
|
|
#include <nds.h>
|
|
|
|
|
|
|
|
// Funcion NF_InitMixedBgSys();
|
|
void NF_InitMixedBgSys(u8 screen);
|
|
// Inicializa el modo mixto para fondo (Tiled BG + Bitmap 8 bits)
|
|
// Capas 0 a 2 - Tiled
|
|
// Capa 3 - Bitmap 8 bits
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|