summaryrefslogtreecommitdiff
path: root/tools/src/asset_processor/reader.cpp
blob: 4ce7842e179c8e13deca83a46cca9c1bb0df6a23 (plain)
1
2
3
4
5
6
7
8
9
10
#include "reader.h"
#include "util.h"
#include <string>

std::string opt_param(const std::string& format, int defaultVal, int value) {
    if (value != defaultVal) {
        return string_format(format, value);
    }
    return "";
}