aboutsummaryrefslogtreecommitdiff
path: root/arm9/source/config.h
blob: ae27fbacd295a8bb08aad9ececd420266a1b5a46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef CONFIG_H_
    #define CONFIG_H_

    #include "bang.h"


    // Allow the user to switch between instances with the L and R buttons.
    #define SWITCH_BETWEEN_INSTANCES false

    // The number of Bedrock instances to initialise. This will determine
    // the maximum number of programs that can run simultaneously (including
    // the keyboard program). Should be at least 2.
    #define NUM_INSTANCES 2

    // Number of instances reserved for user programs.
    #define USER_INSTANCES (NUM_INSTANCES-1)

    // Index of the keyboard instance, which will display on the bottom
    // screen when the main instance is on the top screen.
    #define KEY_INSTANCE (NUM_INSTANCES-1)
#endif