summaryrefslogblamecommitdiffstats
path: root/src/core/settings.h
blob: 6a6265e1865ee84b5e7ed749075a3b3ea8a70d9b (plain) (tree)
1
2
3
4
5
6
7
8
9








                                          
               
















                       
 

                 
                         

                   
                        


                
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.

#pragma once

namespace Settings {

struct Values {
    // Controls
    int pad_a_key;
    int pad_b_key;
    int pad_x_key;
    int pad_y_key;
    int pad_l_key;
    int pad_r_key;
    int pad_start_key;
    int pad_select_key;
    int pad_home_key;
    int pad_dup_key;
    int pad_ddown_key;
    int pad_dleft_key;
    int pad_dright_key;
    int pad_sup_key;
    int pad_sdown_key;
    int pad_sleft_key;
    int pad_sright_key;

    // Core
    int cpu_core;
    int gpu_refresh_rate;

    // Data Storage
    bool use_virtual_sd;
} extern values;

}